home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / web / noweb / src / c / markup.h < prev    next >
C/C++ Source or Header  |  1995-02-24  |  970b  |  17 lines

  1. extern char at_sign;                    /* the at sign */
  2. int starts_doc(char *);
  3. char *first_doc_line(char *);
  4. int is_def(char *);
  5. char *remove_def_marker(char *);
  6. char *mod_start (char *s, int mark);    /* find the first module name */
  7. char *mod_end (char *s, int mark);              /* find the end of module name */
  8. int starts_code (char *line, char *filename, int lineno);  
  9.                                         /* does this line start module defn? */
  10. void getmodname(char *dest, int size, char *source);
  11.                                         /* extract module name and put in dest */
  12. char *quote_start (char *s, int mark);    /* find open code quote ([[) */
  13. char *quote_end (char *s, int mark);      /* find close code quote (]]) */
  14. char *find_escaped(register char *s, char *search, char *escape, int mark);
  15.                 /* find escaped strings. See markup.nw for details */
  16. char *unescape (char *s); /* returns fresh copy of s with escapes translated */
  17.